home *** CD-ROM | disk | FTP | other *** search
/ Explore Yellowstone / Explore Yellowstone (1997)(The Learning Company)[PC-Mac].iso / mac / GUIDEART.DIR / 00006_Script_fr loop6 < prev    next >
Text File  |  1996-02-29  |  588b  |  22 lines

  1. on exitFrame
  2.   -- if rollOver changes, set SeeAlso item to plain again
  3.   global ThisItem  
  4.   
  5.   if rollover (14) then
  6.     set the ItemDelimiter = ";"        -- *** ";" *** used on new Text01.TXT
  7.     put the mouseItem into WhichItem  
  8.     if WhichItem = ThisItem then      
  9.       go to the frame
  10.     else
  11.       set the TextStyle of item ThisItem of field "SeeAlso" to "plain"
  12.       -- set the ItemDelimiter = "/"
  13.       go to "Loop5"
  14.     end if 
  15.   else
  16.     set the TextStyle of field "SeeAlso" to "plain"
  17.     set the ItemDelimiter = "/"
  18.     go to "Loop5"
  19.   end if
  20. end
  21.  
  22.